home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: 25 Years Anniversary
/
CHIP_25Jahre_Jubilaeum.iso
/
downloads
/
27642
/
xsetup63.exe
/
setup.exe
/
{app}
/
plugins
/
DRS MSO2K Places Bar Small Icons.xpl
next >
Wrap
Text File
|
2002-05-25
|
1KB
|
51 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Program Options\Microsoft Office\MS Office 2000\Open/Save Dialog"
"NAME"="Small Icons"
"VERSION"="1.01"
"LANGUAGE"="VBScript"
"TEXT 1"="Use small icons in places bar"
"DESCRIPTION 1"="The default icon size for the Microsoft Office 2000 places bar is large."
"DESCRIPTION 2"="Check this box to use small icons."
"DESCRIPTION 3"="Clear this box to use large icons."
"AUTHOR"="Donald R. Shroyer, Esq."
"CONTACTURL"="http://www.lscrs.com"
"COPYRIGHT"="Copyright ⌐ 2002 Donald R. Shroyer"
"COMMENT 1"=""
MSO2KOFPIS="HKCU\Software\Microsoft\Office\9.0\Common\Open Find\Places\ItemSize"
MSO2K="HKCU\Software\Microsoft\Office\9.0\"
Sub Plugin_Initialize
if RegPathExists(MSO2K) then
i=RegReadValue(MSO2KOFPIS)
if i=1 or IsEmpty(i) then
SetUIElement 1,false
else
SetUIElement 1,true
end if
else
Call Disable()
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(MSO2KOFPIS,0,2)
else
Call RegWriteValue(MSO2KOFPIS,1,2)
end if
End Sub
Sub Plugin_Terminate
End Sub